home *** CD-ROM | disk | FTP | other *** search
/ Shareware Grab Bag / Shareware Grab Bag.iso / 090 / cmln0386.arc / ADA2.LTG < prev    next >
Text File  |  1986-03-03  |  384b  |  15 lines

  1.  
  2.                             Listing 2
  3.  
  4.      if x = 10 then
  5.           case y is
  6.                when 10     => statement 1 ;
  7.                when others => statement 2 ;
  8.           end case ;
  9.      else
  10.           case y is
  11.                when 11     => statement 3 ;
  12.                when others => statement 4 ;
  13.           end case ;
  14.      end if ;
  15.